home *** CD-ROM | disk | FTP | other *** search
- #!/bin/csh
-
- set RibDir = ~ribbons
-
- if( $#argv != 2 ) then
- goto Usage
- endif
-
- if( ! -e $1 ) then
- echo " PDB file $1 does not exist. "
- goto Usage
- endif
-
- if( ! -e $2 ) then
- echo " Helix range file $2 does not exist. "
- goto Usage
- endif
-
- $RibDir/fithx/bestfits $2 < $1
-
- exit
-
-
- Usage:
- echo " usage: pdb-hx-fit mol.pdb hx.range"
-